PyTure Docs
Installation
Get PyTure up and running in your environment.
Requirements
Install with pip
The recommended way to install PyTure is using pip:
bash
pip install pyture
Development Installation
To install from source for development:
bash
git clone https://github.com/pyture/pyture.git
cd pyture
pip install -e .
Note: For the best experience, we recommend using a virtual environment to avoid conflicts with other packages.
Installation in a Virtual Environment
To avoid dependency conflicts, create a virtual environment and install PyTure inside it:
bash
python -m venv venv
source venv/bin/activate # macOS/Linux
venv\Scripts\activate # Windows
pip install pyture